This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: using vbscript in Notes ~Chloe Bubregenjip 3.Dec.03 12:48 PM a Web browser Domino Designer 6.0.1 CF2Windows XP
Hi Paul,
I hope i am understanding your question right and thia helps you. I have used javascript in notes and i am sure vbscript would be along similar lines. Just enclose your vbscript code in <script> tags and print it in the agent.
eg: Here is an extract from my code (code generates a graphic excel report and gives the user a link to the file)
Print "<table width='800' cellpadding='0' cellspacing='0' align='center' border='0'>"
Print "<tr><td class='style1' colspan='6' bgcolor= 'white'> </td></tr>"
Print "<tr>"
Print "<td class='style1' font color='black' bgcolor= 'white' align='left'>"
Print "<center><b><br><br>Please right click on the link below and choose 'Save Target As' to download the file to your machine <br><br>or<br><br>Click to view<br><br>"
Print "<a href='"+httpfilepath+"'> Please click here to download the file </a><br><br>"
Print "</td>"
Print "</tr>"
Print "</table>"